home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / postredraw.ifx < prev    next >
Text File  |  2004-08-03  |  515b  |  26 lines

  1. /*
  2.  * $VER: PostRedraw 1.00.00 (24.9.92)
  3.  *
  4.  * Arexx program for the ImageFX image processing system.
  5.  * Written by Thomas Krehbiel
  6.  *
  7.  * This program is called after ImageFX redraws the screen; this allows
  8.  * you to add a hook to update another display automatically.  You must
  9.  * first call "SetPrefs AutoRender On" before this will actually be
  10.  * used.
  11.  *
  12.  */
  13.  
  14. PARSE ARG left top width height .
  15.  
  16. OPTIONS RESULTS
  17.  
  18. IF ARG() > 0 THEN DO
  19.    Render Area left top width height
  20.    END
  21. ELSE DO
  22.    Render Go
  23.    END
  24.  
  25. EXIT
  26.